home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 19 / CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso / CUCD / Programming / LEDA / DaggeX / startx < prev    next >
Encoding:
Text File  |  1993-12-14  |  661 b   |  27 lines

  1. ; This is a DaggeX startup-script
  2.  
  3. ;general stuff for server startup
  4.  
  5. stack 300000    ; might work with less
  6. changetaskpri 1
  7.  
  8. ;start daggex on a native B&W screen with AmiTCP connections
  9.  
  10. run >nil: <nil: daggex -fp $FONTPATH -auth $XAUTHORITY -amitcp
  11.  
  12. ;start DaggeX running 256-color 1280x1024 picasso-II screen
  13. ;run >nil: <nil: daggex -fp $FONTPATH -auth $XAUTHORITY -village -depth 8 -width 1280 -height 1024 -amitcp
  14.  
  15. ;wait for a while to let the user decide the screenmode if using native gfx, use shorter wait
  16. ;if using -width and -height.
  17.  
  18. changetaskpri 0
  19.  
  20. wait 20    ;should be enough
  21.  
  22. ;then start yup twm
  23.  
  24. run >nil: <nil: twm -f system.twmrc
  25.  
  26. echo "X started"
  27.